home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Classic Collection / The Amiga Classic Collection - Disc 1.iso / Business / BU11-AddressMgr.DMS / BU11-AddressMgr.adf / programming_tips_code / amiga.h < prev    next >
C/C++ Source or Header  |  1994-07-08  |  1KB  |  53 lines

  1. /* amiga.h - header file to be included with amiga.c */
  2.  
  3. #include "general.h"
  4.  
  5. extern TEXT *g_label[];
  6.  
  7.  
  8. /* some globals... */
  9.  
  10. struct TextAttr MyFont = {
  11.        "topaz.font", /* ta_Name  */
  12.         8,        /* ta_YSize */
  13.         0,        /* ta_Style */
  14.         0         /* ta_Flags */
  15.  
  16. }; 
  17.  
  18. struct IntuiText intuitext1 = { /* USED FOR BOXED MESSAGE */ 
  19.         
  20. 1,0,JAM1,       /* pens & drawmode */
  21. 0,0,            /* x/y position set dynamically */
  22. &MyFont,        /* default font */
  23. NULL,           /* text set dynamically */
  24. NULL            /* no next structure */        
  25. };
  26.  
  27. TEXT *message[] = {
  28.     
  29. "THE TIMER DEVICE IS PROVIDING",
  30. "  DELAY PERIODS WHILST THESE ",
  31. "   MESSAGES ARE BEING SHOWN  ",
  32. "       IN THE WINDOW!        "    
  33.     
  34. };
  35.  
  36.  
  37. struct NewMenu menu1[] = 
  38.  
  39. {
  40.         {NM_TITLE,"PROJECT  ",           0 ,0,0,0,},
  41.         {NM_ITEM, "Quit to WorkBench",  "Q",0,0,0,},
  42.  
  43.         {NM_TITLE,"DELAY SETTING    ",  0 ,0,0,0,},
  44.         {NM_ITEM, "Fast..........   ", "F",0,0,0,},
  45.         {NM_ITEM, "Slow..........   ", "S",0,0,0,},
  46.         {NM_ITEM, "Even slower...   ", "E",0,0,0,},
  47.         {NM_ITEM, "VERY slow.....   ", "V",0,0,0,},
  48.             
  49.         {NM_END, NULL,                  0, 0,0,0,},
  50.                 };
  51.  
  52.  
  53.